home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / fly8111-.000 / fly8111- / fly8 / DJGPP / grdj.h < prev    next >
C/C++ Source or Header  |  1979-12-31  |  603b  |  28 lines

  1. /* --------------------------------- grdj.h --------------------------------- */
  2.  
  3. /* This is part of the flight simulator 'fly8'.
  4.  * Author: Eyal Lebedinsky (eyal@ise.canberra.edu.au).
  5. */
  6.  
  7. /* Vga graphics low level routines.
  8. */
  9.  
  10. #ifndef FLY8_FAST_GRDJ
  11. #define FLY8_FAST_GRDJ
  12.  
  13. #include "bgr.h"
  14.  
  15. #define VGA_PAGE    ((char BPTR *)0xd0000000)
  16.  
  17. #define GR_TYPES    0x000f
  18. #define GR_TYPE_T4K    0x0000
  19. #define GR_TYPE_S3    0x0001
  20. #define GR_TYPE_VESA    0x0002
  21.  
  22. /* low.c */
  23. extern void    FAR SetActiveBase (Ulong b);
  24. extern void    FAR SetVisualBase (Ulong b);
  25. extern void    FAR InitGr (int mode, int sizex, int sizey);
  26.  
  27. #endif
  28.